Returns a list containing the values of this map.
Examples:
[1: 'a', 2: 'b', 3: 'c'].values() returns ['a', 'b', 'c'].
[1: 'a', 2: 'b', 3: 'c'].values()
['a', 'b', 'c']
map<K,V>().values() returns [] (where K and V are valid types).
map<K,V>().values()
[]
K
V
0.6.0